home *** CD-ROM | disk | FTP | other *** search
/ HPAVC / HPAVC CD-ROM.iso / pc / FZNUM.ZIP / fuzzy / confint / makefile.unx < prev    next >
Encoding:
Makefile  |  1994-10-08  |  288 b   |  20 lines

  1. CC = g++ 
  2.  
  3. all:        confint.o test test01
  4.  
  5. check:        test test01
  6.     test
  7.     test01
  8.  
  9. confint.o:    confint.h confint.cc
  10.     $(CC) -c confint.cc
  11.  
  12. test:        test.o confint.o
  13.     $(CC) -o test test.o confint.o -lm
  14.  
  15. test01:        test01.o confint.o
  16.     $(CC) -o test01 test01.o confint.o -lm
  17.  
  18. .cc.o:
  19.     $(CC) -c -o $@ $*.cc
  20.